
* {
    font-family: 'helvetica';
    text-align: center;
}

#container {
    display: grid;
    grid-template-rows: 80px 90px 150px 100px 50px 500px;
}

/* ------------------------ Header bar -------------------------- */

.header {
    grid-row-start: 1;
    grid-row-end: 2;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    color: #f2f2f2;
    background-color: #d49f91;
}

.logo {
    width: 250px;
    text-align: right;
}

.search {
    width: 250px;
    text-align: center;
}

#logo {
    font-family: 'Lucida handwriting';
    text-decoration: none;
    font-weight: bold;
    color: #f2f2f2;
    font-size: 25px;
}

#title {
    font-size: 30px;
}

#searchIcon {
    width: 35px;
    height: 35px;
}

/* -------------------- Welome text, quote, and 'Search' button -------------------- */

.welcome {
    grid-row-start: 2;
    grid-row-end: 3;
}

#welcome {
    color: #44546a;
    font-size: 28px;
    font-weight: bold;
}

#quote {
    grid-row-start: 3;
    grid-row-end: 4;
    
    color: #44546a;
    width: 550px;
    padding: 30px;
    background-color: #f9e8ce;
    border-radius: 30px;
    display: inline-block;
}

#person {
    font-style:italic;
}

.button {
    grid-row-start: 4;
    grid-row-end: 5;

    align-self: center;
}

#button {
    font-size: 20px;
    color: #f2f2f2;
    background-color: #769898;
    text-decoration: none;

    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
    border: 1.5px solid #769898;
    border-radius: 10px;
}

#button:hover {
    background-color: #f2f2f2;
    border: 1.5px solid #769898;
    color: #769898;
}

#filler {
    grid-row-start: 5;
    grid-row-end: 6;
}

.image img {
    grid-row-start: 6;
    grid-row-end: -1;

    height: 400px;
    border-radius: 40px;
}
